home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / phpMyAdmin / libraries / engines / ndbcluster.lib.php < prev   
Encoding:
PHP Script  |  2005-12-06  |  728 b   |  39 lines

  1. <?php
  2. /* $Id: ndbcluster.lib.php,v 1.1 2005/12/07 10:41:35 cybot_tm Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. class PMA_StorageEngine_ndbcluster extends PMA_StorageEngine
  6. {
  7.     /**
  8.      * @return  array
  9.      */
  10.     function getVariables()
  11.     {
  12.         return array(
  13.             'ndb_connectstring' => array(
  14.             ),
  15.          );
  16.     }
  17.  
  18.     /**
  19.      * @return  string  SQL query LIKE pattern
  20.      */
  21.     function getVariablesLikePattern()
  22.     {
  23.         return 'ndb\\_%';
  24.     }
  25.  
  26.     /**
  27.      * returns string with filename for the MySQL helppage
  28.      * about this storage engne
  29.      *
  30.      * @return  string  mysql helppage filename
  31.      */
  32.     function getMysqlHelpPage()
  33.     {
  34.         return 'ndbcluster';
  35.     }
  36. }
  37.  
  38. ?>
  39.